home *** CD-ROM | disk | FTP | other *** search
- property pl_linelist, pl_currentdisplaylist, pi_currentletternum, pi_currentlistnum, pb_changedisplay
-
- on new me
- return me
- end
-
- on init me, line1list, line2list, line3list, line4list, line5list, line6list
- pl_linelist = [line1list, line2list, line3list, line4list, line5list, line6list]
- end
-
- on changedisplayto me, str1, str2, str3, str4, str5, str6
- if str1 = EMPTY then
- repeat with alist in pl_linelist
- repeat with t = alist[1] to alist[2]
- sprite(t).member = member(32, "letters")
- end repeat
- end repeat
- else
- if listp(str1) then
- tmplist = str1
- else
- tmplist = [str1, str2, str3, str4, str5, str6]
- end if
- repeat with t = 1 to tmplist.count
- if voidp(tmplist[t]) then
- tmplist[t] = EMPTY
- end if
- end repeat
- if tmplist <> pl_currentdisplaylist then
- repeat with alist in pl_linelist
- repeat with t = alist[1] to alist[2]
- sprite(t).member = member(32, "letters")
- end repeat
- end repeat
- pl_currentdisplaylist = tmplist
- pi_currentlistnum = 1
- pi_currentletternum = 1
- pb_changedisplay = 1
- end if
- end if
- end
-
- on Update me
- if pb_changedisplay = 1 then
- if pi_currentletternum <= (pl_linelist[pi_currentlistnum][2] - pl_linelist[pi_currentlistnum][1] + 1) then
- if pi_currentletternum <= pl_currentdisplaylist[pi_currentlistnum].char.count then
- castnumber = charToNum(pl_currentdisplaylist[pi_currentlistnum].char[pi_currentletternum])
- else
- castnumber = 32
- end if
- sprite(pl_linelist[pi_currentlistnum][1] + (pi_currentletternum - 1)).member = member(castnumber, "letters")
- pi_currentletternum = pi_currentletternum + 1
- else
- pi_currentlistnum = pi_currentlistnum + 1
- pi_currentletternum = 1
- if pi_currentlistnum > pl_currentdisplaylist.count then
- pb_changedisplay = 0
- end if
- end if
- end if
- end
-